home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / BBS / BBSEDIT1.ZIP / EDITLIST.SCR < prev    next >
Encoding:
Text File  |  1996-02-24  |  545 b   |  18 lines

  1. ;
  2. ;This is a sample script file that can be used to determine if BBSEdit is
  3. ;currently editing a BBS list before allowing a user in Telegard to add to
  4. ;it.  You *MUST* pass the name of the BBS list as a parameter to this script.
  5. ;The default BBS list is BBSLIST.
  6. ;
  7.  
  8. FILEEXIST D:\TG3\DATA\@1@.USE GOTO INUSE
  9. FILECREATE D:\TG3\DATA\@1@.USE
  10. FILEPUT "BBS list being edited in Telegard"
  11. FILECLOSE
  12. MENU OA D:\TG3\DATA\@1@
  13. FILEERASE D:\TG3\DATA\@1@.USE
  14. ENDSCRIPT
  15.  
  16. :INUSE
  17. PUTNL "`0CSorry, you can not add to the BBS list at this time!"
  18.